home *** CD-ROM | disk | FTP | other *** search
/ Developer Helper 1: Phil & Dave's Excellent CD / Excellent CD HFS.raw / Utilities / ResEdit / Examples / CExamples / BuildGNRLLDEF < prev    next >
Text File  |  2022-08-05  |  686b  |  27 lines

  1. #ResEdit CExample
  2. #This is the script file BuildGNRLLDEF which builds the c GNRL LDEF example 
  3.  
  4. Open "{WorkSheet}"
  5.  
  6. set start `date -n`
  7. echo Building the ResEdit c GNRL LDEF example
  8. date -t
  9.  
  10. # Set the directory to the 'CExamples MPW 3.0' folder
  11. directory "{boot}"ResEdit:Examples:CExamples:
  12.  
  13. # Set the variable to indicate where ResEdit can be found.
  14. #  This variable is used by the make file to put the 
  15. #  example picker into ResEdit.
  16. set buildToName "{boot}ResEdit:ResEdit"
  17. Export buildToName
  18.  
  19. make -f MakeGNRLLDEF > temp
  20. temp
  21. delete temp
  22.  
  23. beep 
  24. set end `date -n`
  25. echo "        " built in `Evaluate ({end} - {start}) DIV 60` "minutes " `Evaluate ({end} - {start}) MOD 60` "seconds"
  26.  
  27.